golang.org/x/net/http2.stream.bodyBytes (field)

5 uses

	golang.org/x/net/http2 (current package)
		server.go#L644: 	bodyBytes        int64   // body bytes seen so far
		server.go#L1806: 	if st.declBodyBytes != -1 && st.bodyBytes+int64(len(data)) > st.declBodyBytes {
		server.go#L1833: 			st.bodyBytes += int64(len(data))
		server.go#L1876: 	if st.declBodyBytes != -1 && st.declBodyBytes != st.bodyBytes {
		server.go#L1878: 			st.declBodyBytes, st.bodyBytes))